home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Misc / Crossword / Source / BackjumpWord.h < prev    next >
Text File  |  1992-10-11  |  356b  |  24 lines

  1. /*
  2.  
  3. File BackjumpWord.h
  4.  
  5. This type of word is used for a backjumping search.  Each word remembers whether it participates in the current nogood.
  6.  
  7. */
  8.  
  9. #import "PlainWord.h"
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface BackjumpWord:PlainWord
  16. {
  17.     BOOL    nogood;
  18. }
  19.  
  20. - (BOOL) mustChange;
  21. - mark;
  22. - clear;
  23.  
  24. @end